/*==================================================
            GADGETMOBI PREMIUM UI V2
===================================================*/

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ROOT COLORS */

:root{

--dark:#464646;
--orange:#dc7123;
--white:#ffffff;
--light:#f7f7f7;
--text:#333;
--radius:18px;

--gradient:linear-gradient(135deg,#464646,#dc7123);

--shadow:
0 15px 40px rgba(0,0,0,.12);

--transition:.35s ease;

}


/* RESET */

*{

margin:0;
padding:0;
box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}


body{

font-family:'Poppins',sans-serif;

background:#f7f7f7;

color:var(--text);

overflow-x:hidden;

}


/* SCROLLBAR */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}
::-webkit-scrollbar-thumb{

background:var(--gradient);

border-radius:20px;

}


/* CONTAINER */

.container{
    width:100%;
    max-width:1350px;
    margin:auto;
    padding:0 25px;
}


/* LINKS */

a{

text-decoration:none;

color:inherit;

}


/* IMAGE */

img{

max-width:100%;

display:block;

}


/* BUTTON */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:14px 28px;

border-radius:50px;

font-weight:600;

transition:var(--transition);

cursor:pointer;

border:none;

}


.btn-primary{

background:var(--gradient);

color:#fff;

box-shadow:0 12px 30px rgba(220,113,35,.35);

}


.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(220,113,35,.45);

}


.btn-outline{

background:#fff;

border:2px solid #dc7123;
box-shadow:0 10px 25px rgba(220,113,35,.20);

color:#dc7123;

}


.btn-outline:hover{

background:var(--gradient);

color:#fff;

}


/* SECTION */

section{

padding:90px 0;

}


/*=========================
ANNOUNCEMENT BAR
=========================*/

.top-offer{

background:var(--gradient);

color:#fff;

padding:8px 0;

font-size:14px;

font-weight:600;

text-align:center;

letter-spacing:.5px;
}
/*=========================
HEADER
=========================*/

header{

border-bottom:none;

box-shadow:0 5px 20px rgba(0,0,0,.08);

position:sticky;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.92);

backdrop-filter:blur(16px);

}
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    height:86px;   /* 72px ki jagah 86px */
}


/* LOGO */

.logo{

display:flex;

align-items:center;

gap:3px;

}


.logo img{

width:52px;

filter:drop-shadow(0 0 10px rgba(220,113,35,.35));

}


.logo h2{

font-size:22px;

font-weight:700;

color:#464646;

}


.logo span{

color:#dc7123;

}


.logo p{

font-size:11px;

color:#777;

margin-top:-2px;

}


/* MENU */

.nav-links{
    flex:1;
    display:flex;
    justify-content:center;
    gap:42px;
}


.nav-links a{
    color:#464646;
    font-weight:600;
    position:relative;
    transition:var(--transition);
}


.nav-links a:hover,
.nav-links a.active{
    color:#dc7123;
}


.nav-links a::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:#dc7123;

transition:.35s;

border-radius:20px;

}


.nav-links a:hover::after,
.nav-links a.active::after{

width:100%;

}
/*================ HEADER RIGHT BUTTONS ================*/

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-right a{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:18px;
    transition:.35s ease;
}

.call-btn{
    background:#464646;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.cart-btn{
    background:#dc7123;
    color:#fff;
}

.login-btn{
    background:#f4f1ea;
    color:#464646;
    border:1px solid #ddd;
}

.header-right a:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}
/*=========================================
            HERO SECTION
=========================================*/

.hero{
    min-height:calc(100vh - 85px);
    padding:20px 0;
    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
               linear-gradient(135deg,#464646,#dc7123);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    left:-120px;
}

.hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    bottom:-100px;
    right:-80px;
}

.hero-content{
    max-width:1200px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:20px 25px;
    position:relative;
    z-index:2;
}

.hero-text{
    flex:1;
    color:#fff;
}

.hero-text h5{
    color:#ffd28d;
    font-size:18px;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-text h1{
    font-size:60px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:800;
}

.hero-text h1 span{
    color:#ffd28d;
}

.hero-text p{
    font-size:18px;
    color:#f2f2f2;
    margin:10px 0 18px;
    line-height:1.6;
    max-width:520px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:22px;
    flex-wrap:wrap;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    margin-right:70px;
}
.hero-image::before{

content:"";

position:absolute;

width:320px;
height:320px;

background:rgba(220,113,35,.25);

border-radius:50%;

filter:blur(80px);

z-index:-1;

}

.hero-image img{
    width:100%;
    max-width:390px;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
}
@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

}

@media(max-width:992px){

.hero-content{

flex-direction:column;
text-align:center;

}

.hero-text h1{

font-size:42px;

}

.hero-text p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:40px;

}

}
/*=========================
Announcement Bar
=========================*/

.announcement-bar{
    background:linear-gradient(135deg,#464646,#dc7123);
    color:#fff;
    padding:8px 0;
    font-size:13px;
    font-weight:600;
}

.announcement-content{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}
/*=========================================
        HERO BADGES
=========================================*/

.hero-badges{

display:flex;
gap:12px;
flex-wrap:wrap;
margin:15px 0;

}

.hero-badges span{

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

padding:10px 18px;

border-radius:50px;

color:#fff;

font-size:14px;

}

.hero-badges i{

color:#ffd28d;
margin-right:8px;

}

/*=========================================
        HERO STATS
=========================================*/

.hero-stats{

display:flex;
gap:30px;
margin:18px 0;
flex-wrap:wrap;

}

.hero-stats h2{

font-size:34px;
color:#ffd28d;

}

.hero-stats p{

font-size:14px;
color:#eee;

margin-top:6px;

}
/*=========================================
      FLOATING PREMIUM CARDS
=========================================*/

.offer-card,
.warranty-card,
.seller-card{

position:absolute;

padding:16px 26px;

font-size:16px;

border-radius:50px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.15);

color:#fff;

font-weight:600;

box-shadow:0 15px 35px rgba(0,0,0,.25);

animation:floatCard 5s ease-in-out infinite;

}

.offer-card{
    position:absolute;
    top:150px;
    right:-10px;

    background:rgba(220,113,35,.85);
    backdrop-filter:blur(12px);

    color:#fff;
    padding:16px 28px;

    border-radius:50px;
    font-size:16px;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:5;
}

.seller-card{
    position:absolute;
    top:250px;     /* bottom ki jagah top use karo */
    right:-20px;

    background:rgba(145,96,58,.85);
    backdrop-filter:blur(12px);

    color:#fff;
    padding:16px 28px;

    border-radius:50px;
    font-size:16px;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:5;
}

.warranty-card{

    bottom:70px;
    left:70px;

}

.offer-card i,
.warranty-card i,
.seller-card i{

margin-right:8px;
color:#ffd28d;

}

@keyframes floatCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}
/*=================================
        BRANDS SECTION
==================================*/

.brands-section{

padding:90px 0;

background:#f8f8f8;

}

.section-title{

text-align:center;

margin-bottom:55px;

}

.section-title h2{

font-size:38px;

color:#333;

margin-bottom:12px;

}

.section-title p{

color:#777;

font-size:17px;

}

.brands-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

}

.brand-card{

background:#fff;

padding:40px 20px;

border-radius:22px;

text-align:center;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

border:2px solid transparent;

cursor:pointer;

position:relative;

overflow:hidden;

}
.brand-card::before{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(220,113,35,.15),
transparent
);

transition:.7s;

}

.brand-card:hover::before{

left:100%;

}

.brand-card i{

font-size:58px;

margin-bottom:22px;

background:linear-gradient(135deg,#dc7123,#ffb347);

background-clip:text;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.brand-card h3{

font-size:23px;

font-weight:700;

color:#333;

letter-spacing:.5px;

}

.brand-card:hover{

transform:translateY(-12px);

border-color:#dc7123;

box-shadow:0 18px 40px rgba(220,113,35,.25);

}
/*=========================================
        CATEGORY SECTION
=========================================*/

.categories{

padding:90px 0;

background:#f7f8fa;

}

.category-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.category-card{

background:#fff;

border-radius:24px;

padding:35px 25px;

text-align:center;

text-decoration:none;

transition:.35s;

box-shadow:0 12px 30px rgba(0,0,0,.08);

border:2px solid transparent;

}

.category-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:linear-gradient(135deg,#dc7123,#ff9a3d);

display:flex;

justify-content:center;

align-items:center;

}

.category-icon i{

font-size:42px;

color:#fff;

}

.category-card h3{

font-size:22px;

color:#333;

margin-bottom:8px;

}

.category-card span{

color:#777;

font-size:15px;

}

.category-card:hover{

transform:translateY(-12px);

border-color:#dc7123;

box-shadow:0 20px 40px rgba(220,113,35,.25);

}

@media(max-width:992px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.category-grid{

grid-template-columns:1fr;

}

}
/*=========================================
        FEATURED PRODUCTS
=========================================*/

.featured-products{

padding:90px 0;

background:#fff;

}

.featured-wrapper{

position:relative;

display:flex;

align-items:center;

}

.featured-slider{

overflow:hidden;

width:100%;

}

.featured-track{

display:flex;

gap:25px;

transition:.5s;

}

.slider-btn{

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#dc7123;

color:#fff;

cursor:pointer;

font-size:20px;

transition:.3s;

z-index:5;

}

.slider-btn:hover{

transform:scale(1.1);

}

.prevBtn{

margin-right:15px;

}

.nextBtn{

margin-left:15px;

}
/*=========================================
        PRODUCT CARD
=========================================*/

.card{
    flex:0 0 calc((100% - 75px)/4);
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:240px;
    object-fit:contain;
    background:#f7f7f7;
    padding:20px;
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#28a745;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.saleBadge{
    position:absolute;
    top:15px;
    right:15px;
    background:#dc7123;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
}

.cardContent{
    padding:20px;
}

.cardContent h3{
    font-size:20px;
    color:#333;
    margin-bottom:12px;
}

.cardContent del{
    color:#888;
    display:block;
    margin-bottom:10px;
}

.sale{
    font-size:24px;
    color:#dc7123;
    font-weight:700;
    margin-bottom:20px;
}

.eye{
    display:block;
    text-align:center;
    background:#dc7123;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.eye:hover{
    background:#b95e1d;
}
/*=========================================
        WHY CHOOSE GADGETMOBI
=========================================*/

.why-us{
    padding:90px 0;
    background:#f8f8f8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border:2px solid transparent;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#dc7123;
    box-shadow:0 18px 40px rgba(220,113,35,.20);
}

.why-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#dc7123,#ff9b3d);
    display:flex;
    justify-content:center;
    align-items:center;
}

.why-icon i{
    font-size:40px;
    color:#fff;
}

.why-card h3{
    font-size:22px;
    color:#2d2d2d;
    margin-bottom:15px;
}

.why-card p{
    color:#777;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.why-grid{
    grid-template-columns:1fr;
}

}
/*=========================================
        LATEST DEALS
=========================================*/

.deals-banner{

padding:100px 0;

background:linear-gradient(135deg,#464646,#dc7123);

color:#fff;

text-align:center;

overflow:hidden;

}

.deal-tag{

display:inline-block;

padding:10px 20px;

border:1px solid rgba(255,255,255,.4);

border-radius:30px;

font-size:14px;

letter-spacing:1px;

margin-bottom:25px;

}

.deals-content h2{

font-size:56px;

font-weight:700;

margin-bottom:20px;

}

.deals-content p{

font-size:20px;

opacity:.9;

margin-bottom:35px;

}

.deal-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:16px 38px;

background:#fff;

color:#dc7123;

text-decoration:none;

font-weight:700;

border-radius:50px;

transition:.35s;

}

.deal-btn:hover{

background:#1f1f1f;

color:#fff;

transform:translateY(-4px);

}

@media(max-width:768px){

.deals-content h2{

font-size:40px;

}

.deals-content p{

font-size:17px;

}

}
/*=========================================
        CUSTOMER REVIEWS
=========================================*/

.reviews{
    padding:90px 0;
    background:#f8f8f8;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(220,113,35,.18);
}

.stars{
    color:#ffb400;
    font-size:22px;
    margin-bottom:20px;
}

.review-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.customer{
    display:flex;
    align-items:center;
    gap:15px;
}

.customer img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.customer h4{
    color:#2d2d2d;
    margin-bottom:4px;
}

.customer span{
    color:#888;
    font-size:14px;
}

@media(max-width:992px){

.reviews-grid{
grid-template-columns:1fr;
}

}
/*=========================================
            NEWSLETTER
=========================================*/

.newsletter{

padding:90px 0;

background:linear-gradient(135deg,#dc7123,#464646);

}

.newsletter-box{

max-width:800px;

margin:auto;

text-align:center;

color:#fff;

}

.newsletter-box h2{

font-size:46px;

margin-bottom:20px;

}

.newsletter-box p{

font-size:18px;

margin-bottom:40px;

opacity:.9;

}

.newsletter-form{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.newsletter-form input{

width:500px;

max-width:100%;

padding:18px 22px;

border:none;

border-radius:50px;

font-size:16px;

outline:none;

}

.newsletter-form button{

padding:18px 40px;

border:none;

border-radius:50px;

background:#fff;

color:#dc7123;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.35s;

}

.newsletter-form button:hover{

background:#1f1f1f;

color:#fff;

}

@media(max-width:768px){

.newsletter-box h2{

font-size:34px;

}

.newsletter-box p{

font-size:16px;

}

.newsletter-form{

flex-direction:column;

align-items:center;

}

.newsletter-form input{

width:100%;

}

}
/*=========================================
        ABOUT GADGETMOBI
=========================================*/

.about-gadgetmobi{
    padding:90px 0;
    background:#f8f8f8;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-left h2{
    font-size:42px;
    color:#2d2d2d;
    margin-bottom:25px;
}

.about-left p{
    font-size:17px;
    color:#666;
    line-height:1.9;
}

.about-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:2px solid transparent;
}

.about-box:hover{
    transform:translateY(-8px);
    border-color:#dc7123;
    box-shadow:0 18px 40px rgba(220,113,35,.18);
}

.about-box i{
    font-size:42px;
    color:#dc7123;
    margin-bottom:18px;
}

.about-box h3{
    font-size:22px;
    color:#2d2d2d;
    margin-bottom:12px;
}

.about-box p{
    color:#777;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
}

.about-right{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.about-right{
    grid-template-columns:1fr;
}

.about-left h2{
    font-size:34px;
}

}
/*=========================================
            OUR POLICIES
=========================================*/

.policies{
    padding:90px 0;
    background:#fff;
}

.policy-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.policy-card{
    background:#fff;
    border:2px solid #f1f1f1;
    border-radius:22px;
    padding:35px 30px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.policy-card:hover{
    transform:translateY(-10px);
    border-color:#dc7123;
    box-shadow:0 18px 40px rgba(220,113,35,.20);
}

.policy-card i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#dc7123,#ff9c47);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:22px;
}

.policy-card h3{
    font-size:24px;
    color:#2d2d2d;
    margin-bottom:18px;
}

.policy-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.policy-card ul li{
    position:relative;
    padding-left:24px;
    margin-bottom:12px;
    color:#666;
    line-height:1.7;
}

.policy-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#dc7123;
    font-weight:700;
}

@media(max-width:992px){

.policy-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.policy-grid{
    grid-template-columns:1fr;
}

.policy-card{
    padding:30px 24px;
}

}
/*=========================================
                FOOTER
=========================================*/

.footer{
    background:#1f1f1f;
    color:#ddd;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:45px;
}

.footer-logo{
    font-size:36px;
    color:#fff;
    margin-bottom:18px;
}

.footer-logo span{
    color:#dc7123;
}

.footer-col p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-col h3{
    color:#fff;
    font-size:22px;
    margin-bottom:22px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:50px;
    height:3px;
    background:#dc7123;
    border-radius:20px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:14px;
    color:#bbb;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#dc7123;
    padding-left:6px;
}

.footer-col ul li i{
    color:#dc7123;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2d2d2d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#dc7123;
    transform:translateY(-5px);
}

.footer hr{
    margin:55px 0 25px;
    border:none;
    height:1px;
    background:#3d3d3d;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#aaa;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#aaa;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#dc7123;
}

@media(max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-links{
    flex-direction:column;
    gap:12px;
}

}